Private Declare Function CompFile Lib "FSZLib" (ByVal OutputName As String, ByVal InputName As String, ByVal Level As Long, ByVal ProgressFunction As Long) As Long
Private Declare Function DecompFile Lib "FSZLib" (ByVal OutputName As String, ByVal InputName As String, ByVal ProgressFunction As Long) As Long
Global gPerCent As Integer
Function Progress(ByVal PerCent As Long) As Long
gPerCent = PerCent
Progress = 0
End Function
Public Function CompressFile(OutputFile As String, InputFile As String, Level As fsCompressionLevel) As Integer